home *** CD-ROM | disk | FTP | other *** search
/ Windows News 2010 Summer - Disc 1 / WN_Ete2010_CD1.iso / Onglet5 / Weezo / Weezo setup.exe / {code_appDir} / www / local / showStats.php < prev    next >
PHP Script  |  2010-05-19  |  2KB  |  50 lines

  1. <?php
  2. /**
  3.  * Show statistiques
  4.  *
  5.  *
  6.  *
  7.  * PHP version 5
  8.  *
  9.  * LICENSE: This source file is subject to version 3.0 of the PHP license
  10.  * that is available through the world-wide-web at the following URI:
  11.  * http://www.php.net/license/3_0.txt.  If you did not receive a copy of
  12.  * the PHP License and are unable to obtain it through the web, please
  13.  * send a note to license@php.net so we can mail you a copy immediately.
  14.  *
  15.  * @category   NA
  16.  * @package    NA
  17.  * @author     Nicolas Bruley / Peer 2 World <contact@weezo.net>
  18.  * @copyright  2005-2009 Nicolas Bruley / Peer 2 World
  19.  * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
  20.  * @version    CVS: $Id:$
  21.  * @link       http://www.weezo.net
  22.  * @since      File available since Release 1.0.0
  23.  */
  24.  
  25. // Initialize script data
  26. require_once('localFunctions.php');
  27. lfInit();
  28. $_SESSION['activeResourceId']=0;
  29.  
  30. if(!isset($_GET['graph']) && !isset($_POST['asyncRequest'])){
  31.     cfInsertHEAD(false);
  32.     ?>
  33. <meta width="800x500"></meta>
  34. <meta icon="activity"></meta>
  35. <meta title="Weezo - <?php echo cfCaption('genStats');?>"></meta>
  36. <style type="text/css">
  37. .cell{padding:4px 0px 4px 0px}
  38. .dcell{padding:4px 0px 4px 0px;filter:Alpha(opacity=50, style=0); -moz-opacity:0.50; -khtml-opacity:0.50; opacity:0.50;}
  39. </style>
  40.     <?php
  41.     echo '</head><body oncontextmenu="return false">';
  42.     //echo $_SERVER['REQUEST_URI'];
  43. }
  44. require_once(INCLUDE_DIR.'databaseFunctions.php');
  45. require_once('../res/administration/std/stats.php');
  46.  
  47. if(!isset($_POST['asyncRequest'])){
  48.     echo '</div></body></html>';
  49. }
  50. ?>